net/http.wantConnQueue.headPos (field)
10 uses
net/http (current package)
transport.go#L1341: headPos int
transport.go#L1347: return len(q.head) - q.headPos + len(q.tail)
transport.go#L1357: if q.headPos >= len(q.head) {
transport.go#L1362: q.head, q.headPos, q.tail = q.tail, 0, q.head[:0]
transport.go#L1364: w := q.head[q.headPos]
transport.go#L1365: q.head[q.headPos] = nil
transport.go#L1366: q.headPos++
transport.go#L1372: if q.headPos < len(q.head) {
transport.go#L1373: return q.head[q.headPos]
transport.go#L1408: for _, w := range q.head[q.headPos:] {
![]() |
The pages are generated with Golds v0.7.6. (GOOS=linux GOARCH=amd64) Golds is a Go 101 project developed by Tapir Liu. PR and bug reports are welcome and can be submitted to the issue list. Please follow @zigo_101 (reachable from the left QR code) to get the latest news of Golds. |